home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / GUICtrlSetCursor.au3 < prev    next >
Text File  |  2007-09-08  |  208b  |  12 lines

  1. #include <GUIConstants.au3>
  2.  
  3. GUICreate("put cursor over label", 300, 100)
  4. GUICtrlCreateLabel("label",125,40)
  5. GUICtrlSetCursor(-1, 4)
  6. GUISetState ()
  7.  
  8. While GUIGetMsg()<> $GUI_EVENT_CLOSE
  9. WEnd
  10. Exit
  11.  
  12.